home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 7 / FM Towns Free Software Collection 7.iso / t_os / gpen32k / source.exe / LIB / OSRC / OCIRCLE2.C < prev    next >
C/C++ Source or Header  |  1993-03-22  |  226b  |  13 lines

  1. /*
  2.     グラフィック特別関数
  3. */
  4.  
  5. #include    <math.h>
  6. #include    <EGB.H>
  7. #include    <NORMLIB.h>
  8.  
  9. void circle2(int x1, int y1, int x2, int y2, int wm, int c )
  10. {
  11.     circle(x1, y1, sqrt((x2-x1)*(x2-x1)+(y2-y1)*(y2-y1)), wm, c);
  12. }
  13.